home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 32
/
Amiga Format AFCD32 (Nov 1998, Issue 117).iso
/
-seriously_amiga-
/
programming
/
other
/
hrtmon
/
hrtmon.c
< prev
next >
Wrap
C/C++ Source or Header
|
1998-08-10
|
501b
|
36 lines
/*
Filename: HRTmon.c
Author: Alain Malek
Description: Load and install HRTmon quietly
(use config saved by HRTmonPrefs)
Usage: HRTmon -r (-r to only remove HRTmon)
*/
#include "HRTmonLoad.h"
int ShowReq(char *text,char*choice)
{
printf("%s\n",text);
}
void main(int argc, char **argv)
{
LoadInit();
if ( RemHRTmon() )
printf("HRTmon located and removed\n");
if (argc != 2 || stricmp(argv[1],"-r"))
Load(config.path);
exit (0);
}